/* Barra superior */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            animation: fadeIn 1s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            animation: pulse 2s infinite;
            cursor: pointer;
            transition: transform 0.3s;
            overflow: hidden;
            /* Importante: evita que la imagen se salga */
        }
        
        /* Estilos para la imagen dentro del logo */
        
        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;/* Ajusta la imagen sin deformarla */
            display: block;
        }
        
        .logo:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            position: relative;
            transition: color 0.3s;
            letter-spacing: 1px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #3a86ff);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .social-icons {
            display: flex;
            gap: 20px;
        }

        .social-icons a {
            color: #fff;
            font-size: 20px;
            transition: transform 0.3s, color 0.3s;
            text-decoration: none;
        }

        .social-icons a:hover {
            transform: rotate(15deg) scale(1.2);
            color: #ff006e;
        }


/* Footer Styles */
footer {
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.footer-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Evita que la imagen se salga */
}

/* Estilos para la imagen dentro del logo del footer */
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen sin deformarla */
    display: block;
}

.footer-tagline {
    color: #8b92a8;
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
    font-weight: 400;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #e8eaed;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #8b92a8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    color: #8b92a8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #a8a8b3;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 10px;
    }

    .footer-tagline {
        text-align: center;
        margin: 0 auto;
    }
}